History : Web History
Middleware to proxy requests through a specified index page, useful for Single Page Applications
that utilise the HTML5
history API.
Single Page Applications
(SPA) typically only utilise one index file that is accessible by web browsers: usually index.html
. Navigation in the application is then commonly handled using javascript with the help of the HTML5
history API.
This results in issues when the user hits the refresh button or is directly accessing a page other than the landing page, e.g. /help
or /help/online
as the web server bypasses the index file to locate the file at this location.
As your application is a SPA
, the web server will fail trying to retrieve the file and return a 404 - Not Found
message to the user.
This tiny middleware addresses some of the issues. Specifically, it will change the requested location to the index you specify (default being /index.html
) whenever there is a request which fulfills the following criteria:
- The request is a
GET
orHEAD
request, - which accepts text/html,
- is not a direct file request, i.e. the requested path does not contain a . (DOT) character and
- does not match a pattern provided in options.
User can use the following code to import the history
module.
var history = require('middleware').history;
Support
The following shows history
module APIs available for each permissions.
User Mode | Privilege Mode | |
---|---|---|
history | ● | ● |
History Object
history([options])
options
{Object} Middleware options.
Base use as:
app.use(history());
The options details as follows:
index
- {String} Override the index. This is the request path that will be used when the middleware identifies that the request path needs to be rewritten, default:
/index.html
.
This is not the path to a file on disk. Instead it is the HTTP
request path. Downstream middleware is responsible to turn this rewritten HTTP
request path into actual responses, e.g. by reading a file from disk.
history({
index: '/default.html'
});
rewrites
- {Array} Override the index when the request url matches a regex pattern. You can either rewrite to a static string or use a function to transform the incoming request.
The following will rewrite a request that matches the /\/soccer/
pattern to /soccer.html
.
history({
rewrites: [
{ from: /\/soccer/, to: '/soccer.html' }
]
});
Alternatively functions can be used to have more control over the rewrite process. For instance, the following listing shows how requests to /libs/jquery/jquery.1.12.0.min.js
and the like can be routed to ./bower_components/libs/jquery/jquery.1.12.0.min.js
. You can also make use of this if you have an API version in the URL
path.
history({
rewrites: [{
from: /^\/libs\/.*$/,
to: function(context) {
return '/bower_components' + context.parsedUrl.pathname;
}
}]
});
The function will always be called with a context object that has the following properties:
parsedUrl
{Object}: Information about theURL
as provided byurl.parse
.match
{Array}: An Array of matched results as provided byString.match(...)
.request
{Object}: TheHTTP
request object.
verbose
- {Boolean} This middleware does not log any information by default. If you wish to activate logging, then you can do so via the
verbose
option or by specifying a logger function.
history({
verbose: true
});
logger
- {Function} Logger function.
history({
logger: console.log.bind(console)
});
htmlAcceptHeaders
- {Array} Override the default
Accepts:
headers that are queried when matchingHTML
content requests, default:['text/html', '*/*']
.
history({
htmlAcceptHeaders: ['text/html', 'application/xhtml+xml']
});
disableDotRule
- {Boolean} Disables the dot rule mentioned: […] is not a direct file request, i.e. the requested path does not contain a
.
(DOT) character […]
history({
disableDotRule: true
});